home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / wtj009.zip / CPP_DLL.ZIP / HELLO.CPP < prev    next >
C/C++ Source or Header  |  1992-08-04  |  342b  |  19 lines

  1. // hello.cpp RHS 7/15/92
  2.  
  3. #include<windows.h>
  4.  
  5. LPSTR wintitle = "HELLO";
  6. LPSTR winmessage ="Hello, world!";
  7.  
  8. void FAR PASCAL HelloMessage(LPCSTR wintitle)
  9.     {
  10.     MessageBox(NULL,winmessage,wintitle,MB_OK);
  11.     }
  12.  
  13. int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  14.     {
  15.     HelloMessage(wintitle);
  16.     return 0;
  17.     }
  18.  
  19.